PlusOperator
Type
operator
Summary
Binary plus operator.
Syntax
<Left> + <Right>
Description
Binary plus operator.
Parameters
Name | Type | Description |
---|---|---|
Left | An expression that evaluates to a number. | |
Right | An expression that evaluates to a number. |
Examples
variable tVar as Number
put 5 + 4 + 3 into tVar -- tVar contains 12